div#loading {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(255 255 255 / 0.5);
	z-index: 9999;	
}

div#loading div.center {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

div#loading div.center div.loader {
	width: 50px;
	height: 50px;
	display: table;
	margin: 0 auto; 
	border-top: 16px solid var(--main-color);
}

div#loading div.center span {
	position: relative;
	display: block;
	margin-top: 20px;
	text-align: center;
}

div#records-loading {
	display: block;
    position: relative;
    height: 200px;	
}

div#records-loading div.center {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

div#records-loading div.center div.loader {
	border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #0d9e41;
	width: 25px;
	height: 25px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
}

